home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD-ROM Collection
/
Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso
/
auge4000
/
46
/
lib
/
time
/
ctime.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-20
|
121b
|
15 lines
/*
* time/ctime.c
*/
#include <time.h>
char *
ctime(tp)
const time_t *tp;
{
return(asctime(localtime(tp)));
}